home *** CD-ROM | disk | FTP | other *** search
- function alg()
- {
- var d = Math.cos(this.Angle * 3.141592653589793 / 180) * this.amp;
- if(this.moveUDflg == true)
- {
- this.py += d;
- }
- if(this.moveLRflg == true)
- {
- this.px += d;
- }
- this.Angle += this.speed;
- this.Angle %= 360;
- if(this.hitTest(_root.tobbyMC.hitdummyMC))
- {
- _root.tobbyMC.miss();
- }
- if(this.hitTest(_root.handMC))
- {
- _root.handMC.miss();
- }
- }
- this.py = this._y;
- this.px = this._x;
-